Computes the Cholesky factorization of a symmetric, positive definite matrix.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=real64), | intent(inout), | dimension(:,:) | :: | a |
On input, the N-by-N matrix to factor. On output, the factored matrix is returned in either the upper or lower triangular portion of the matrix, dependent upon the value of upper. |
|
logical, | intent(in), | optional | :: | upper |
An optional input that, if specified, provides control over whether the factorization is computed as (set to true), or as (set to false). The default is true such that . |
|
class(errors), | intent(inout), | optional, | target | :: | err |
The error object to be updated. |
Computes the Cholesky factorization of a symmetric, positive definite matrix.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
complex(kind=real64), | intent(inout), | dimension(:,:) | :: | a |
On input, the N-by-N matrix to factor. On output, the factored matrix is returned in either the upper or lower triangular portion of the matrix, dependent upon the value of upper. |
|
logical, | intent(in), | optional | :: | upper |
An optional input that, if specified, provides control over whether the factorization is computed as (set to true), or as (set to false). The default is true such that . |
|
class(errors), | intent(inout), | optional, | target | :: | err |
The error object to be updated. |